home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C12 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  3.1 KB  |  147 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C12
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     Opover.exe \
  20.     Unary.exe \
  21.     Binary.exe \
  22.     Comma.exe \
  23.     Smartp.exe \
  24.     Iosop.exe \
  25.     FeeFi.exe \
  26.     Simpcopy.exe \
  27.     Copymem.exe \
  28.     Refcount.exe \
  29.     RefcountTrace.exe \
  30.     Autoeq.exe \
  31.     Autocnst.exe \
  32.     Opconv.exe \
  33.     Reflex.exe \
  34.     Strings1.exe \
  35.     Strings2.exe \
  36.     Ambig.exe \
  37.     Fanout.exe \
  38.     FeeFi2.exe 
  39.  
  40. test: all 
  41.     Opover.exe  
  42.     Unary.exe  
  43.     Binary.exe  
  44.     Comma.exe  
  45.     Smartp.exe  
  46.     Iosop.exe  
  47.     FeeFi.exe  
  48.     Simpcopy.exe  
  49.     Copymem.exe  
  50.     Refcount.exe  
  51.     RefcountTrace.exe  
  52.     Autoeq.exe  
  53.     Autocnst.exe  
  54.     Opconv.exe  
  55.     Reflex.exe  
  56.     Strings1.exe  
  57.     Strings2.exe  
  58.     Ambig.exe  
  59.     Fanout.exe  
  60.     FeeFi2.exe  
  61.  
  62. bugs: 
  63.     @echo No compiler bugs in this directory!
  64.  
  65. Opover.exe: Opover.obj 
  66.     $(CPP) $(OFLAG)Opover.exe Opover.obj 
  67.  
  68. Unary.exe: Unary.obj 
  69.     $(CPP) $(OFLAG)Unary.exe Unary.obj 
  70.  
  71. Binary.exe: Binary.obj 
  72.     $(CPP) $(OFLAG)Binary.exe Binary.obj 
  73.  
  74. Comma.exe: Comma.obj 
  75.     $(CPP) $(OFLAG)Comma.exe Comma.obj 
  76.  
  77. Smartp.exe: Smartp.obj 
  78.     $(CPP) $(OFLAG)Smartp.exe Smartp.obj 
  79.  
  80. Iosop.exe: Iosop.obj 
  81.     $(CPP) $(OFLAG)Iosop.exe Iosop.obj 
  82.  
  83. FeeFi.exe: FeeFi.obj 
  84.     $(CPP) $(OFLAG)FeeFi.exe FeeFi.obj 
  85.  
  86. Simpcopy.exe: Simpcopy.obj 
  87.     $(CPP) $(OFLAG)Simpcopy.exe Simpcopy.obj 
  88.  
  89. Copymem.exe: Copymem.obj 
  90.     $(CPP) $(OFLAG)Copymem.exe Copymem.obj 
  91.  
  92. Refcount.exe: Refcount.obj 
  93.     $(CPP) $(OFLAG)Refcount.exe Refcount.obj 
  94.  
  95. RefcountTrace.exe: RefcountTrace.obj 
  96.     $(CPP) $(OFLAG)RefcountTrace.exe RefcountTrace.obj 
  97.  
  98. Autoeq.exe: Autoeq.obj 
  99.     $(CPP) $(OFLAG)Autoeq.exe Autoeq.obj 
  100.  
  101. Autocnst.exe: Autocnst.obj 
  102.     $(CPP) $(OFLAG)Autocnst.exe Autocnst.obj 
  103.  
  104. Opconv.exe: Opconv.obj 
  105.     $(CPP) $(OFLAG)Opconv.exe Opconv.obj 
  106.  
  107. Reflex.exe: Reflex.obj 
  108.     $(CPP) $(OFLAG)Reflex.exe Reflex.obj 
  109.  
  110. Strings1.exe: Strings1.obj 
  111.     $(CPP) $(OFLAG)Strings1.exe Strings1.obj 
  112.  
  113. Strings2.exe: Strings2.obj 
  114.     $(CPP) $(OFLAG)Strings2.exe Strings2.obj 
  115.  
  116. Ambig.exe: Ambig.obj 
  117.     $(CPP) $(OFLAG)Ambig.exe Ambig.obj 
  118.  
  119. Fanout.exe: Fanout.obj 
  120.     $(CPP) $(OFLAG)Fanout.exe Fanout.obj 
  121.  
  122. FeeFi2.exe: FeeFi2.obj 
  123.     $(CPP) $(OFLAG)FeeFi2.exe FeeFi2.obj 
  124.  
  125.  
  126. Opover.obj: Opover.cpp 
  127. Unary.obj: Unary.cpp 
  128. Binary.obj: Binary.cpp ..\require.h 
  129. Comma.obj: Comma.cpp 
  130. Smartp.obj: Smartp.cpp 
  131. Iosop.obj: Iosop.cpp ..\require.h 
  132. FeeFi.obj: FeeFi.cpp 
  133. Simpcopy.obj: Simpcopy.cpp 
  134. Copymem.obj: Copymem.cpp ..\require.h 
  135. Refcount.obj: Refcount.cpp ..\require.h 
  136. RefcountTrace.obj: RefcountTrace.cpp ..\require.h 
  137. Autoeq.obj: Autoeq.cpp 
  138. Autocnst.obj: Autocnst.cpp 
  139. Opconv.obj: Opconv.cpp 
  140. Reflex.obj: Reflex.cpp 
  141. Strings1.obj: Strings1.cpp ..\require.h 
  142. Strings2.obj: Strings2.cpp ..\require.h 
  143. Ambig.obj: Ambig.cpp 
  144. Fanout.obj: Fanout.cpp 
  145. FeeFi2.obj: FeeFi2.cpp 
  146.  
  147.